* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e8eef78a !important;
}

.whole-page-wrapper {
    background-image: url("../Assets/E-70.png");
    background-position: center;
    background-size: contain;
    max-width:3200px;
    margin-left:auto;
    margin-right:auto;
}

.hero-image-div {
    position: relative;
    text-align: center ;
}

.hero-image-div img {
    object-fit: cover;
    min-height: 300px;
    max-height: 1160px;
}

.hero-image-div .hero-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 3px 3px 6px black;
    color: white;
}

.description-header {
    color: white;
    background-color: #d26e63;
    padding: 15px 0 15px 0;
    box-shadow: 0px 7px 10px 4px rgb(167 157 157 / 70%);
}

.description-section {
    text-align: center;
    background-image: url('../Assets/E-93.png');
    background-size: cover;
    height: 420px;
    z-index: 0;
    position: relative;
    background-position: bottom;
}

.description-section .text-div {
    position: relative;
    text-align: center;
    z-index: 1;
    max-width: 80ch;
    margin-right: auto;
    margin-left: auto;
    padding: 5px 20px 0 20px;
    color:#1c2f4d;
}

.drop-element {
    height: 37px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.description-div-text {
    position: relative;
    margin: 0 auto 0 auto;
    text-align: center;
    max-width: 768px;
    color: #1c2f4d;
    padding: 30px 55px;
    border: 2px solid #1c2f4d;
    border-radius: 20px;
    background-color: #69addd61;
}

.description-div-text h2,
.description-div-text ul {
    margin-bottom: 20px !important;
}

.register-section {
    margin: 0 auto 150px auto;
    text-align: center;
    max-width: 65ch;
    padding-left:20px;
    padding-right:20px;
}

.register-section-text {
    margin-bottom: 150px;
}
  
.register-section p {
    color: #1d477c;
    background-color: #bcdbaf91;
    border-radius: 10px;
    padding: 30px;
    border: 2px solid #1d477c;
}

.register-section-buttons button:nth-child(1) {
    margin-bottom: 65px;
}
  
.register-section .register-button {
    margin: auto;
    font-family: 'Poppins', serif;
    font-size: 30px;
    display: block;
    width: 300px;
    height: 70px;
    background-color: #f7c851;
    color: white;
    transition: .5s ease;
    border: 1px solid transparent;
    border-radius: 10px;
}
  
.register-section .register-button:hover,
.register-section .register-button:active {
    background-color: transparent;
    border: 1px solid #f7c851;
    color: #f7c851;
}

.flowers-section {
    min-height: 388px;
}

.wave-bg-wrapper {
    background-image: url("../Assets/Welcome/welcome-wave-bg.png");
    background-size: cover;
    background-position-x: center;
    background-position-y: -590px;
    background-repeat: no-repeat;
}

.wrapper {
    background-image: url('../Assets/Welcome/Flowers w. butterflies 4.png');
    background-size: cover;
    background-position-x: center;
    background-position-y: -150px;
    background-repeat: no-repeat;
    padding-bottom: 220px;
    
}

.butterfly-img-section {
    margin: 75px auto;
    display: flex;
    justify-content: center;
}

.top-butterfly-img-section {
    text-align: center;
    overflow: hidden;
    transform: translateY(-70px);
}

.butterfly-img-section img,
.top-butterfly-img-section img:nth-child(2) {
    height: 150px;
}

.top-butterfly-img-section img:nth-child(1) {
    height: 130px;
    position: absolute;
    animation-name: top-section-butterfly-animation-first;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    bottom:0;
}

@keyframes top-section-butterfly-animation-first {
    0%, 100% {
        transform: translateX(-100px) rotateY(0deg);
    }

    50% {
        transform: translateX(-100px) rotateY(180deg);
    }
}

.top-butterfly-img-section img:nth-child(2) {
    animation-name: top-section-butterfly-animation-second;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

@keyframes top-section-butterfly-animation-second {
    0%, 100% {
        transform: translateX(90px) rotateY(0deg);
    }

    50% {
        transform: translateX(90px) rotateY(180deg);
    }
}

.butterfly-img-section img:nth-child(1) {
    animation-name: butterfly-animation;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes butterfly-animation {
    0%, 100% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }
}

.butterfly-img-section img:nth-child(2) {
    transform: translateY(45px);
}

.safari-wrapper {
    overflow: hidden;
    position: relative;
}

@media screen and (min-width: 2350px) {
    .description-section {
      height: 450px;
    }
}

@media screen and (max-width: 2000px) {
    .flowers-section {
        min-height: 295px;
        background-size: cover;
        margin:0;
    }

    .wrapper {
        background-size: cover;
        margin:0
    }
}

@media screen and (max-width: 1200px) {
    .description-section {
      height: 330px;
    }

    .flowers-section {
        min-height: 300px;
    }

    .register-section-text {
        margin-bottom: 100px;
    }

    .register-section {
        max-width: 53ch;
    }

    .register-section-buttons button:nth-child(1) {
        margin-bottom: 50px;
    }

    .register-section .register-button {
        font-size: 25px;
        width: 250px;
        height: 50px;
    }

    .butterfly-img-section img,
    .top-butterfly-img-section img:nth-child(2)  {
        height: 125px;
    }

    .flowers-section {
        min-height: 300px;
    }

    .wave-bg-wrapper {
        background-position-y: -450px;
    }
}

@media screen and (max-width: 991px) {
    section .description-text-div {
        margin-bottom: 50px;
        padding: 0 30px 0 30px;
    }

    .description-section {
        height: 320px;
    }

    .register-section {
        max-width: 44ch;
    }

    .flowers-section {
        min-height: 250px;
    }

    .butterfly-img-section {
        margin: 50px auto;
    }
}

@media screen and (max-width:820px) {
    .wrapper {
        background-image: url('../Assets/Welcome/Flowers w. butterflies 6.png');
        background-position: 50% -45px;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 568px) {
    .form-section button {
        font-size: 22px;
        width: 250px;
        height: 50px;
    }

    .description-section {
        height: 300px;
    }

    .description-div-text {
        padding: 30px 30px;
    }

    .flowers-section {
        min-height: 200px;
    }

    .register-section .register-button {
        font-size: 22px;
        width: 230px;
        height: 50px;
    }

    .butterfly-img-section img,
    .top-butterfly-img-section img:nth-child(2)  {
        height: 100px;
    }

    .wrapper {
        background-image: url('../Assets/Welcome/Flowers w. butterflies 7.png');
        background-position-y: -45px;
    }
}

@media screen and (max-width: 437px) {
    .hero-image-div img {
        min-height: auto;
    }
}

@media screen and (max-width: 414px) {
    .description-section {
      height: 400px;
    }
}

@media screen and (max-width: 367px) {
    .description-section {
      height: 460px;
    }
  
}








